home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsht.h < prev    next >
C/C++ Source or Header  |  1997-02-19  |  3KB  |  71 lines

  1. /* Copyright (C) 1993, 1994, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsht.h */
  20. /* Public interface to halftone functionality */
  21.  
  22. #ifndef gsht_INCLUDED
  23. #  define gsht_INCLUDED
  24.  
  25. /* Client definition of (Type 1) halftones */
  26. typedef struct gs_screen_halftone_s {
  27.     float frequency;
  28.     float angle;
  29.     float (*spot_function)(P2(floatp, floatp));
  30.         /* setscreen or sethalftone sets these: */
  31.         /* (a Level 2 feature, but we include them in Level 1) */
  32.     float actual_frequency;
  33.     float actual_angle;
  34. } gs_screen_halftone;
  35. #define st_screen_halftone_max_ptrs 0
  36.  
  37. /* Client definition of color (Type 2) halftones */
  38. typedef struct gs_colorscreen_halftone_s {
  39.     union _css {
  40.         gs_screen_halftone indexed[4];
  41.         struct _csc {
  42.             gs_screen_halftone red, green, blue, gray;
  43.         } colored;
  44.     } screens;
  45. } gs_colorscreen_halftone;
  46. #define st_colorscreen_halftone_max_ptrs 0
  47.  
  48. /* Procedural interface */
  49. int gs_setscreen(P2(gs_state *, gs_screen_halftone *));
  50. int gs_currentscreen(P2(const gs_state *, gs_screen_halftone *));
  51. int gs_currentscreenlevels(P1(const gs_state *));
  52.  
  53. /*
  54.  * Enumeration-style definition of a single screen.  The client must:
  55.  *    - probably, call gs_screen_enum_alloc;
  56.  *    - call gs_screen_init;
  57.  *    - in a loop,
  58.  *        - call gs_screen_currentpoint; if it returns 1, exit;
  59.  *        - call gs_screen_next;
  60.  *    - if desired, call gs_screen_install to install the screen.
  61.  */
  62. typedef struct gs_screen_enum_s gs_screen_enum;
  63. gs_screen_enum *gs_screen_enum_alloc(P2(gs_memory_t *, client_name_t));
  64. int gs_screen_init(P3(gs_screen_enum *, gs_state *,
  65.               gs_screen_halftone *));
  66. int gs_screen_currentpoint(P2(gs_screen_enum *, gs_point *));
  67. int gs_screen_next(P2(gs_screen_enum *, floatp));
  68. int gs_screen_install(P1(gs_screen_enum *));
  69.  
  70. #endif                    /* gsht_INCLUDED */
  71.